home *** CD-ROM | disk | FTP | other *** search
/ Floppyshop 2 / Floppyshop - 2.zip / Floppyshop - 2.iso / diskmags / 0022-3.564 / dmg-0085 / 296.txt < prev    next >
Text File  |  1997-04-16  |  16KB  |  420 lines

  1. =========================================================================
  2.  
  3. INFO-ATARI16 Digest         Thu,  8 Mar 90       Volume 90 : Issue  296
  4.  
  5. Today's Topics:
  6.                          520ST Memory Upgrade
  7.                                 G-Dos
  8.            How do you create non-scrolling screen regions?
  9.                               Question!
  10.                            QuickCIS program
  11.                              Quick ST 2.0
  12.                       SAM V1.1 at Umich (2 msgs)
  13.                          Screensaver (again)
  14.                           SIMMs for the STE
  15.                              ST for sale
  16.           Subject: Sooner or later it _will_ happen to you.
  17.                              TT (2 msgs)
  18. ----------------------------------------------------------------------
  19.  
  20. Date: 8 Mar 90 04:37:35 GMT
  21. From: brunix!rjd@uunet.uu.net  (Rob Demillo)
  22. Subject: 520ST Memory Upgrade
  23. Message-ID: <31899@brunix.UUCP>
  24.  
  25. Thanks to all those who responded to my "is it *really* safe to
  26. bump up the memory on a 4 year old 520ST with piggybacked 1 Meg
  27. RAM currently installed" question. I was responding to all of
  28. you one by one, but today I logged in and there were 32 messages
  29. in my mailbox, so, um, I'm wimping out and responding here.
  30.  
  31. The overwhelming response seems to have been: "I've done it, no
  32. sweat, its been running fine for a gwuadzillion years, no overheating,
  33. no problems, etc." So, I feel much more comfortable now. :)
  34.  
  35. Thanks again, the responses and inquiries were appreciated!
  36.  
  37.  
  38.  - Rob DeMillo                  | Internet: rjd@brown.cs.edu
  39.    Brown University             | BITnet: DEMILLO%BRNPSG.SPAN@STAR.STANFORD.EDU
  40.    Planetary Science Group      | Reality: 401-273-0804 (home)
  41. "I say you *are* the Messiah, Lord! And I ought to know, I've followed a few!"
  42.  
  43. ------------------------------
  44.  
  45. Date: 8 Mar 90 01:44:15 GMT
  46. From: isc-br!iscuvd.isc-br.com!richardk@uunet.uu.net  (Richard Kearnes)
  47. Subject: G-Dos
  48. Message-ID: <2790@isc-br.ISC-BR.COM>
  49.  
  50. In article <9003051048.AA02991@freya.math.dmswwu> ONM07@DMSWWU1A.BITNET (Julian
  51.  Reschke) writes:
  52. >In article <17476@boulder.Colorado.EDU> MILLER TODD C writes:
  53. >> You can get AMCGDOS.ARC from terminator.cc.umich.edu (35.1.33.8).
  54. ...
  55.  
  56. >How can You say that AMCGDOS is PD, if there is clearly a copyright
  57. >in the program startup? AMCGDOS is free ONLY for NON-COMMERCIAL usage!
  58.  
  59. If AMCGDOS is free for non-commercial usage can someone with access to
  60. the terminator archive send a copy of the package to the moderator of
  61. comp.binaries.atari.st so it can be posted to the net for those of us
  62. who do not have access to the terminator archive?
  63. --
  64. Richard Kearnes            UUCP:  richardk@isc-br.ISCS.COM
  65. ISC-Bunker Ramo                 (uunet!isc-br!richardk)
  66. East 22425 Appleway        Phone: +1 509 927-5478
  67. Liberty Lake, WA  99019
  68.  
  69. ------------------------------
  70.  
  71. Date: 8 Mar 90 06:27:05 GMT
  72. From:
  73.  mailrus!usenet.ins.cwru.edu!usenet.INS.CWRU.Edu!bammi@tut.cis.ohio-state.edu
  74.  (Jwahar R. Bammi)
  75. Subject: How do you create non-scrolling screen regions?
  76. Message-ID: <BAMMI.90Mar8012815@curie.ces.cwru.edu>
  77.  
  78. In article <2344@ultb.isc.rit.edu> ajy2208@ultb.isc.rit.edu (A.J. Yarusso)
  79.  writes:
  80. >   Hopefully I won't have to write custom screen i/o routines to do
  81.  
  82.         No you wont have to! there is an advertised lineA variable (V_CEL_MY)
  83. just to do this: the short (16 bit) at offset -0x2a (-42 decimal) bytes from
  84. the lineA base can be set to a number N to get effectively a N+1 line
  85. scrolling region vt52. For instance if you want the N'th line to
  86. be a status line, and have a (N-1)x80 vt52, you would set
  87.  
  88.         char *linea_base = (base of lineA from linea0 (0xA000));
  89.  
  90.         short *V_CEL_MY = (short *)(linea_base - 42L);
  91.         short save;
  92.         save = *V_CEL_MY;
  93.         *V_CEL_MY = save - 1;
  94.  
  95.         ....
  96.         and before terminating:
  97.         *V_CEL_MY = save;
  98.  
  99. its probably not a good idea to assume that the screen is 25 lines
  100. high (or even 80 wide (with can be determined from V_CEL_MX at offset -44)).
  101.  
  102. To write to the bottom line(s):
  103.         - you can use something like v_gtext()
  104.         - or you can change *V_CEL_Y, write to the line using
  105.         Bcon/Ccon traps, and change *V_CEL_Y back, and so on..
  106.  
  107. Some of this stuff is documented in <line.h> that i posted here a while
  108. back, or in the more current version of that file that comes  with the
  109. Gnu C library (available via FTP from dsrgsun.ces.crwu.edu).
  110.  
  111. --
  112. --
  113. bang:   
  114. domain: bammi@dsrgsun.ces.CWRU.edu
  115. GEnie:  J.Bammi
  116.  
  117. ------------------------------
  118.  
  119. Date: 8 Mar 90 07:17:31 GMT
  120. From:
  121.  cs.utexas.edu!jarvis.csri.toronto.edu!utgpu!watserv1!watcgl!electro!ignac@tut.c
  122.  is.ohio-state.edu  (Ignac Kolenko)
  123. Subject: Question!
  124. Message-ID: <1478@electro.UUCP>
  125.  
  126. hmmm. i seem to have created yet another controversy over trying to post
  127. the Quick ST II demo code to comp.binaries.atari.st. Soooo, i want to get
  128. some feedback from net people on a couple of things:
  129.  
  130. 1 - Branch Always Software *ALWAYS* will post a demo of our latest stuff
  131.         on ALL online services (Compuserve, BIX, GEnie) and we feel (or at
  132.         least I do) that people on Usenet who don't have access to the above
  133.         online services (ie: most Europeans) benifit from having the demos
  134.         posted to comp.binaries.atari.st as well
  135.  
  136. 2 - we will NOT make a special demo version just for Usenet. One is plenty
  137.         to worry about for later bug reports, etc. we just simply do not have
  138.         the time to do things specially for Usenet.
  139.  
  140. 3 - because they are demos of commercial products, we put as must notice into
  141.         the demo to give people ABSOLUTELY no doubt that the stuff is not
  142.         shareware and is indeed commercial. We feel that this is hardly any
  143.         different than large shareware notices. And let's face it folks, Branch
  144.         Always Software is HARDLY on the scale of Apple or Microsoft or even
  145.         lowly Atari for that matter when it comes to commercial sales.
  146.         Shareware simply became too large to keep under the
  147.         table, so going commercial makes our
  148.         stuff that much more legitimate, (and keeps us out of trouble with
  149.         government auditors, etc :-)  (this point is equally valid for
  150.         small companies such as Double Click, etc in the Atari world)
  151.         (and this way, the author of Turbo ST can't yell at us for being
  152.         "unfair competition" as he said when we were shareware.)
  153.  
  154.         so, the questions i ask are:
  155.  
  156. Do you Usenet folks feel that the posting of our demos of our products here
  157. is a worthwhile endevour, or should we stop?
  158.  
  159. Are Usenet folks REALLY care all that much if a commercial endorsement is
  160. made in the demo??
  161.  
  162. if the responses are in favour of absolutely no commercial
  163. stuff on Usenet, then i guess there's no point but to leave Usenet out
  164. on future postings of demos, etc. And i think that in such a small
  165. userbase, that would be a damn shame!
  166.  
  167. (and hell, why should Compuserve, GEnie and BIX get all the good stuff
  168. anyways?????)
  169.  
  170. comments/responses/flames/praise/beratings/humble opinions/blathering/etc
  171. accepted free of charge!
  172.  
  173. --
  174. =====Ignac A. Kolenko (The Ig)=====watmath!watcgl!electro!brasoft!ignac======
  175.      co-author of QuickST, and the entire line of Quick Software!!!!
  176.   Branch Always Software Box 2624, Station B, Kitchener, Ont. CANADA N2H 6N2
  177. =============================================================================
  178.  
  179. ------------------------------
  180.  
  181. Date: Thu, 8 Mar 90 00:04:11 EST
  182. From: csrobe@cs.wm.edu (Chip Roberson)
  183. Subject: QuickCIS program
  184. Message-ID: <9003080504.AA06898@cs.wm.edu>
  185.  
  186. Has anybody successfully downloaded the file QWKCIS.ARC from the
  187. Telecommunications library in the AtariPro forum on CompuServe?
  188. I tried 3 times tonight, but all 3 times the xfer crapped out.
  189. This is getting a little expensive.
  190.  
  191. QuickCIS is an ST program for navigating CIS in a mostly offline
  192. way to minimize connect time.  If anybody has successfully downloaded
  193. it, I would appreciate receiving a copy!
  194.  
  195. Thanks bunches,
  196. -chip
  197. -=- Charles S. Roberson          ARPANET:    csrobe@cs.wm.edu           -=-
  198. -=- VA Remote Sensing Study      UUCP:       ...!uunet!cs.wm.edu!csrobe -=-
  199. -=- Dept of Comp. Sci.           Compu$erve: 71500.2056@compuserve.com  -=-
  200. -=- College of William and Mary  Ma Bell:    (804) 221-3455 [W]         -=-
  201. -=- Williamsburg, VA 23185                   (804) 229-5530 [H]         -=-
  202.  
  203.                     Fur:  The look that kills.
  204.  
  205. ------------------------------
  206.  
  207. Date: 7 Mar 90 21:54:10 GMT
  208. From: hpl-opus!hpnmdla!hpsad!randyh@hplabs.hp.com  (Randy Hosler)
  209. Subject: Quick ST 2.0
  210. Message-ID: <750052@hpsad.HP.COM>
  211.  
  212. / hpsad:comp.sys.atari.st / scott@cs.odu.edu (Scott Yelich) / 10:58 pm  Mar  6,
  213.  1990 /
  214.  
  215. > And now for a random thoughts:
  216. > 1) Information on that disk to disk copy scheme as well as the space ace
  217. >    demo are available through ftp from xanth.cs.odu.edu.
  218.  
  219. I just tried ftp'ing space_ace and I couldn't "get" it.  Seems that
  220. read permission is not set for 'the world' (not the owner or group).
  221.  
  222. Could someone at xanth.cs.odu.edu fix this please.
  223.  
  224. Randy
  225.  
  226.    |\   | |     _ |                        Randy Hosler
  227.    |/   |-| /\ <  | [] /\                  randyh@hpsadpk
  228.    |\ . | | \/ _> | \_ |                   (707) 974-3677
  229.  
  230. ------------------------------
  231.  
  232. Date: 8 Mar 90 01:44:18 GMT
  233. From:
  234.  zaphod.mps.ohio-state.edu!brutus.cs.uiuc.edu!ux1.cso.uiuc.edu!ux1.cso.uiuc.edu!
  235.  cs325ec@tut.cis.ohio-state.edu
  236. Subject: SAM V1.1 at Umich
  237. Message-ID: <16000021@ux1.cso.uiuc.edu>
  238.  
  239.         I have uploaded SAM V1.1 to umich archives and sent a copy to
  240.         comp.binaries.  It will perform sensitivity adjustable disk
  241.         checking with a few other options.  Check it out if you
  242.         have disk (hard or floppy) problems.
  243.  
  244.         -Greg
  245.  
  246. ------------------------------
  247.  
  248. Date: 8 Mar 90 01:43:56 GMT
  249. From:
  250.  zaphod.mps.ohio-state.edu!brutus.cs.uiuc.edu!ux1.cso.uiuc.edu!ux1.cso.uiuc.edu!
  251.  cs325ec@tut.cis.ohio-state.edu
  252. Subject: SAM V1.1 at Umich
  253. Message-ID: <16000022@ux1.cso.uiuc.edu>
  254.  
  255.         For those of you who wanted to see C code, the sources included
  256.         include
  257.                 GEM.C -- gem routines to ease dialog usage
  258.                 MESS.C -- gem routines to pass messages to the user/get inp
  259.                 SAM.C -- routines involving FAT handling, disk access.
  260.  
  261.         Written in Turbo C.
  262.  
  263.         - Greg
  264.  
  265. ------------------------------
  266.  
  267. Date: 7 Mar 90 13:29:17 GMT
  268. From:
  269.  pacific.mps.ohio-state.edu!zaphod.mps.ohio-state.edu!wuarchive!texbell!letni!dm
  270.  s3b1!dave@tut.cis.ohio-state.edu  (Dave Hanna)
  271. Subject: Screensaver (again)
  272. Message-ID: <219@dms3b1.UUCP>
  273.  
  274. In article <8023@cs.utexas.edu> psurge@cs.utexas.edu (Troy Carpenter) writes:
  275. >I use Maccel2 and my screen blanks, instead of shifting colors.
  276.  
  277. If I'm not mistaken, Maccel2 will blank a color monitor, and periodically
  278. reverse a monochrome monitor.  I have been told that the reason for this
  279. is that the monochrome monitor design will fry itself if it goes for long
  280. periods without a sync signal.
  281.  
  282. I installed the recently posted "pyro" program on top of Maccel2 -
  283. It goes to an almost blank screen after a blanking delay, and produces
  284. a random display of single-pixel "fireworks".  It's cute, but you almost
  285. have to turn the room lights off to see the fireworks.  Anyway, since it
  286. is being sent a signal, it maintains sync to the monitor, but the screen
  287. is essentially black.
  288. >                              Troy Carpenter
  289. >                      Department of Computer Sciences
  290.  
  291.     Dave Hanna
  292.  
  293. --
  294. Dave Hanna,  Infotouch Systems, Inc. |  "Do or do not -- There is no try"
  295. P.O. Box 584, Bedford, TX 76095      |                        - Yoda
  296. (214) 358-4534   (817) 540-1524      |
  297. UUCP:  ...!texbell!letni!dms3b1!dave |
  298.  
  299. ------------------------------
  300.  
  301. Date: 8 Mar 90 01:52:55 GMT
  302. From: rochester!rit!ultb!drp9500@louie.udel.edu  (D.R. Paradis)
  303. Subject: SIMMs for the STE
  304. Message-ID: <2358@ultb.isc.rit.edu>
  305.  
  306. What could I do to my 1040ST to have it take SIMMs?
  307.  
  308.    I want to upgrade to 4 megs as cheap as possible.
  309.  
  310.      Is this a possible way?
  311.  
  312. ------------------------------
  313.  
  314. Date: 8 Mar 90 00:54:55 GMT
  315. From: dw2l+@andrew.cmu.edu  (Daniel Louis Wallace)
  316. Subject: ST for sale
  317. Message-ID: <oZxOpTe00Uh7A1l1Am@andrew.cmu.edu>
  318.  
  319. Hello out there,
  320. I have a 520, drive, and a mono monitor I would like to sale.  I also
  321. have a Panasonic dot matrix printer and a 1200 baud modem to go along
  322. with the system.  I have a bunch of software I am willing to throw in,
  323. games, utilities.  The equipment is still in its original boxes.
  324.  
  325. Daniel Wallace
  326. Carnegie Mellon Univ
  327.  
  328. ------------------------------
  329.  
  330. Date: 7 Mar 90 19:04:12 GMT
  331. From: mcsun!ukc!harrier.ukc.ac.uk!jbww@uunet.uu.net  (J.B.W.Webber)
  332. Subject: Subject: Sooner or later it _will_ happen to you.
  333. Message-ID: <4083@harrier.ukc.ac.uk>
  334.  
  335. In article <900305132338.807867@DMZRZU71-UNI-MAINZ--GERMANY>
  336.  Ritzert@DMZRZU71.BITNET writes:
  337. ><Over the weekend I managed to completely blow away my hard drive.  It wouldn't
  338. ><boot, it wouldn't talk to my ST at all, even when I ran AHDI from floppy.
  339. ><
  340. >
  341. >Well, it looks like the drive "felt formatted". This happens sometimes;
  342. >I know several people who have had these problems. It also happened to
  343. >me with the sh205 a few weeks ago. After I had reformatted the drive (of
  344. >course!), someone who has faced this problem several times told me of a
  345. >way to restore the drive, at least the partitions above c:\. He told me
  346. >that usually only the first 8-10 kB were zeroed.
  347. >
  348. >Michael Ritzert
  349. >mjr@dmzrzu71.bitnet
  350.  
  351.     Anyone with the time to write a tiny utility to just grab all the
  352.         fat and directory structure, + write it to optionally :
  353.         a) file on tracks near other end of disk
  354.         b) floppy disk
  355. (to be run before switch off/ at boot time)
  356.  
  357. An option to grab this info from a sequence of floppy disks would be nice.
  358.  
  359. - sorry for suggesting more work for others, when I don't have the time
  360.  
  361. cheers
  362.         beau webber
  363.  
  364. ------------------------------
  365.  
  366. Date: 8 Mar 90 04:32:48 GMT
  367. From: brunix!rjd@uunet.uu.net  (Rob Demillo)
  368. Subject: TT
  369. Message-ID: <31898@brunix.UUCP>
  370.  
  371. In article <6154@blake.acs.washington.edu> ramsiri@blake.acs.washington.edu
  372.  (Enartloc Nhoj) writes:
  373. >According to many "officials" at ATARI...
  374. >some who have written to me personally,
  375. >
  376. >**  The  TT  will be available in TWO WEEKS! **
  377. >
  378.  
  379. I hate to be accused of crying wolf, but this *does* seem to
  380. confirm what I heard last week. (I never posted it because I
  381. didn't want to be guilty of starting a 'It's coming!' rumor.)
  382.  
  383. Anyway, I was told by a dealer on Feb 28th that the TT will be
  384. released by the end of March. I looked at him incredulously, and
  385. he laughed and said that he heard this from both his Atari shipper
  386. and by someone he knew at the FCC. Just for completeness sake: the
  387. FCC guy told him that the STacy and the TT were both "on the bench"
  388. in one of the labs and were due to complete their certification in
  389. a few days.
  390.  
  391. Now...if all this turns out to be another Atari false alarm,
  392. don't shoot me I'm only the piano player!
  393.  
  394.  
  395.  - Rob DeMillo                  | Internet: rjd@brown.cs.edu
  396.    Brown University             | BITnet: DEMILLO%BRNPSG.SPAN@STAR.STANFORD.EDU
  397.    Planetary Science Group      | Reality: 401-273-0804 (home)
  398. "I say you *are* the Messiah, Lord! And I ought to know, I've followed a few!"
  399.  
  400. ------------------------------
  401.  
  402. Date: 8 Mar 90 00:18:40 GMT
  403. From: haven!grebyn!ckp@ames.arc.nasa.gov  (Checkpoint Technologies)
  404. Subject: TT
  405. Message-ID: <19448@grebyn.com>
  406.  
  407. In article <6154@blake.acs.washington.edu> ramsiri@blake.acs.washington.edu
  408.  (Enartloc Nhoj) writes:
  409. >According to many "officials" at ATARI...
  410. >some who have written to me personally,
  411. >
  412. >**  The  TT  will be available in TWO WEEKS! **
  413.  
  414.         Did anyone else who had seen the movie "The Money Pit" get a
  415. good laugh out of this too??? :-)
  416.  
  417. ------------------------------
  418.  
  419. End of INFO-ATARI16 Digest V90 Issue #296
  420. *****************************************